home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
ctutord.EXE
/
73B.C
< prev
next >
Wrap
C/C++ Source or Header
|
1990-09-09
|
279b
|
16 lines
main()
{
static struct info{
char *name;
int employnum;
} people[] = {
"John", 111,
"Johna", 222,
"Johnx", 333,
"Johnny", 444,
"", 0
};
printf("%s %d\n",people[0].name,people[0].employnum);
/* try printing out the whole info data structure */
}